Forum Activity for @douglas

douglas
@douglas
07/06/15 06:41:18AM
2,807 posts

Private Notes Logo?


Design and Skin Customization

If the private note was sent before the logo image was changed, it will not change in the private note, but should show the correct image going forward. Are you seeing the old log image in new private notes?
douglas
@douglas
07/06/15 06:30:54AM
2,807 posts

Background Image


Design and Skin Customization

Zachary Moonshine"]
this was the code i used at ning

body.page-live-chat:before{content:",";
background-image: url(...}

would this work and just change the url ?

That is basically what I've posted... it mighht look more like this though.

.single_bckgrnd {
    background-image: url('{$jrElastic_img_url}/bckgrd.png');
    background-attachment: fixed;
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}

You can change the class name ".single_bckgrnd" to whatever you would like it to be. And you'll want make sure to change this "{$jrElastic_img_url}/bckgrd.png" to your skin name and image name.

{$xxYOURSKINNAME_img_url}/yourimagename.png or yourimagename.jpg depending on what type of image you are using.

Then if you wrap code in a div with your class name.

<div class="single_bckgrnd">
    More code here....
</div>

then you should see your background image.
updated by @douglas: 07/06/15 06:31:57AM
douglas
@douglas
07/06/15 06:22:46AM
2,807 posts

Background Image


Design and Skin Customization

Strumelia:
Cool Douglas!
I know a little html already.
Would you suggest I start by looking through their css, or their w3css first? (w3 is the mobile responsive i assume?)

If you want to learn more HTML, I would suggest starting at the top left link here:

http://www.w3schools.com/

Learn HTML, Learn CSS and then Learn W3.CSS
douglas
@douglas
07/05/15 12:24:49PM
2,807 posts

Advertisement Placement?


Design and Skin Customization

You can still add the ad code to the header and footer and if you only want the ads to show on the home/index page, add this if statement around your ad code...

{if isset($selected) && $selected == 'home'}
Your ad code goes here...
{/if}

that should work for the Ningja skin, for the Elastic skin, you'll want to add this to the top of the index.tpl file in addition to the above code.

{assign var="selected" value="home"}

updated by @douglas: 07/05/15 12:25:32PM
douglas
@douglas
07/05/15 12:19:47PM
2,807 posts

Background Image


Design and Skin Customization

Just add this:

.single_bckgrd {
background:transparent url("{$jrElastic_img_url}/bckgrd.png") no-repeat;
background-size:cover;
padding:0;
margin:0;
}

to one of your .css files in your skins/YOURSKIN/css/ directory.

Probably the site.css would be best, but ultimately it is up to you where you want it to go.
douglas
@douglas
07/04/15 10:02:59AM
2,807 posts

Background Image


Design and Skin Customization

That would depend on what page you want it on.

You can add another CSS element and use that class in a div on the page you want it on.

Something like this:

.single_bckgrd {
background:transparent url("{$jrElastic_img_url}/bckgrd.png") no-repeat;
background-size:cover;
padding:0;
margin:0;
}

Then in the template you want to use this in, you would add div around the page... for example if you have a page named artist.tpl it would look something like this.

{jrCore_include template="header.tpl"}

<div class="single_bckgrd">
    <div class="container">

        <div class="row">

            <div class="col12 last">
                Your template code goes here....
            </div>

        </div>

    </div>
</div>
{jrCore_include template="footer.tpl"}
douglas
@douglas
07/04/15 06:58:26AM
2,807 posts

Background Image


Design and Skin Customization

Glad you got it sorted. :)
douglas
@douglas
07/04/15 06:04:57AM
2,807 posts

Background Image


Design and Skin Customization

Can you SFTP into your site?

The html.css file will need to be modified manually, it isn't something you can do in the ACP > Skins > jrElastic > Styles tab.
douglas
@douglas
07/04/15 05:54:55AM
2,807 posts

Background Image


Design and Skin Customization

Which skin are you using?
  143